home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
CD-ROM Windows Selection
/
Windows Selection 1.iso
/
Programmer's Utilities
/
GroundControl
/
Samples
/
Sample6.gc
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
1997-03-26
|
288 b
|
13 lines
Messagebox("This macro will demonstrate the repeat command, and Goto commands...")
GoTo(":SubRoutine1")
:Return1
GoTo(":TheExit")
:SubRoutine1
Repeat(MessageBox("This is a simple Message box that will repeated 5 times...."),5)
GoTo(":Return1")
:TheExit
MessageBox("Done.")